home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / swirltile.scm < prev    next >
Text File  |  2009-12-15  |  2KB  |  70 lines

  1. ;
  2. ; Swirl-tile
  3. ;  produces a (hope-fully) seamlessly tiling swirling effect
  4. ;
  5. ;  Adrian Likins  <aklikins@eos.ncsu.edu>
  6. ;
  7. ;  http://www4.ncsu.edu/eos/users/a/aklikins/pub/gimp/
  8. ;
  9.  
  10.  
  11. (define (script-fu-swirl-tile depth azimuth elevation blurRadius height width whirl-amount noise-level bg-color)
  12.   (let* (
  13.         (img (car (gimp-image-new width height RGB)))
  14.         (layer-one (car (gimp-layer-new img width height
  15.                                         RGB-IMAGE "TEST" 100 NORMAL-MODE)))
  16.         (cx (/ width 2))
  17.         (cy (/ height 2))
  18.         )
  19.  
  20.     (gimp-context-push)
  21.  
  22.     (gimp-image-undo-disable img)
  23.  
  24.     (gimp-image-add-layer img layer-one 0)
  25.     (gimp-context-set-background bg-color)
  26.     (gimp-edit-fill layer-one BACKGROUND-FILL)
  27.     (plug-in-noisify RUN-NONINTERACTIVE img layer-one FALSE noise-level noise-level noise-level 1.0)
  28.  
  29.     (plug-in-whirl-pinch RUN-NONINTERACTIVE img layer-one whirl-amount 0.0 1.0)
  30.     (plug-in-whirl-pinch RUN-NONINTERACTIVE img layer-one whirl-amount 0.0 1.0)
  31.     (plug-in-whirl-pinch RUN-NONINTERACTIVE img layer-one whirl-amount 0.0 1.0)
  32.  
  33.     (gimp-drawable-offset layer-one TRUE 0 cx cy)
  34.  
  35.     (plug-in-whirl-pinch RUN-NONINTERACTIVE img layer-one whirl-amount 0.0 1.0)
  36.     (plug-in-whirl-pinch RUN-NONINTERACTIVE img layer-one whirl-amount 0.0 1.0)
  37.     (plug-in-whirl-pinch RUN-NONINTERACTIVE img layer-one whirl-amount 0.0 1.0)
  38.  
  39.     (plug-in-gauss-rle RUN-NONINTERACTIVE img layer-one blurRadius TRUE TRUE)
  40.  
  41.     (plug-in-bump-map RUN-NONINTERACTIVE img layer-one layer-one azimuth elevation depth 0 0 0 0 FALSE FALSE 0)
  42.  
  43.     (gimp-display-new img)
  44.     (gimp-image-undo-enable img)
  45.  
  46.     (gimp-context-pop)
  47.   )
  48. )
  49.  
  50. (script-fu-register "script-fu-swirl-tile"
  51.   _"Swirl-_Tile..."
  52.   _"Create an image filled with a swirled tile effect"
  53.   "Adrian Likins <aklikins@eos.ncsu.edu>"
  54.   "Adrian Likins"
  55.   "1997"
  56.   ""
  57.   SF-ADJUSTMENT _"Depth"           '(10 1 64 1 1 0 0)
  58.   SF-ADJUSTMENT _"Azimuth"          '(135 0 360 1 10 0 0)
  59.   SF-ADJUSTMENT _"Elevation"        '(45 0 90 1 10 0 0)
  60.   SF-ADJUSTMENT _"Blur radius"      '(3 0 128 1 10 0 0)
  61.   SF-ADJUSTMENT _"Height"           '(256 0 1024 1 10 0 1)
  62.   SF-ADJUSTMENT _"Width"            '(256 0 1024 1 10 0 1)
  63.   SF-ADJUSTMENT _"Whirl amount"     '(320 0 360 1 10 0 0)
  64.   SF-ADJUSTMENT _"Roughness"        '(0.5 0 1 0.1 0.01 2 1)
  65.   SF-COLOR      _"Background color" "white"
  66. )
  67.  
  68. (script-fu-menu-register "script-fu-swirl-tile"
  69.                          "<Image>/File/Create/Patterns")
  70.